home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 14
/
CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso
/
CUCD
/
Programming
/
IEditor
/
ARexx
/
Save&Exit.ie
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1997-06-17
|
298 b
|
23 lines
/*
$VER: Save&Exit.ie 1.0 (14.9.95)
Save the actual GUI and then quit IEditor: I'm too lazy to insert this
function in a menu, so here's the ARexx version!
*/
OPTIONS RESULTS
address 'IEDITOR.1'
/* Check if the GUI has a name */
'getname'
if result = '' then exit
'save'
'quit'
exit